text = Map();
if(arguments == "")
{
	text.put("message","Invalid input.");
	return text;
}
else
{
	headersMp = Map();
	setFileTypes = Map();
	setFileTypes.put("shortUrl",arguments);
	headersMp.put("Content-Type","application/json");
	url = "https://www.googleapis.com/urlshortener/v1/url?key=*Insert_API_Key*&shortUrl=" + encodeUrl(arguments);
	response = getUrl(url,{"Content-Type":"application/json"});
	styles = Map();
	styles.put("highlight","true");
	text.put("styles",styles);
	if(response.get("longUrl") == null)
	{
		text.put("text","Incorrect ShortURL - Enter Valid URL");
	}
	else
	{
		text.put("text","Long Url \n" + response.get("longUrl"));
	}
	return text;
}